* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body,html {
      width: 100%;
      overflow-x: hidden;
      background: #f4f4f4;
    }
    
/*------------------------------------------------Navbar section--------------------------------------*/
  .navbar {
  height: 90px;
  width: 100%;
  background: #fff;
  color: #050505;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Logo */
.logo {
  margin-left: 30px; 
}
.logo img {
  height: 90px; 
  width: auto;
  display: block;
}

/* Nav Links */
.nav-links {

  display: flex;
  align-items: center;
  gap: 50px;
}
.nav-links a {
  color: #050505;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  transition: 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: #fb4306e1;
  transition: 0.3s;
}
.nav-links a:hover::after {
  width: 100%;
}

/* Social Icons */
.right-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-right: 40px;
}
.right-icons a {
  color: #050505;
  font-size: 20px;
  transition: 0.3s;
}
.right-icons a:hover {
  color: #fb4306e1;  
  transform: scale(1.2);
}

/* Toggle Button */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ✅ Responsive */
@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    background: #fff;
    flex-direction: column;
    width: 100%;
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin-right: 0; /* mobile me center ho jaye */
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .navbar {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .logo img {
    height: 60px;
    margin: 0;
  }

  /* ✅ Hide social icons on mobile */
  .right-icons {
    display: none;
  }
}

/*------------------------------------------------Image section--------------------------------------*/    
    .contact-section {
      position: relative;
      width: 100%;
      height: 70vh;
      background: 
        linear-gradient(to right, rgba(255, 102, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('../Uploads/contact.jpg') no-repeat center center/cover;
      background-blend-mode: overlay;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .contact-heading {
      font-size: 3rem;
      color: white;
      text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
      opacity: 0;
      transform: scale(0.8);
      animation: zoomIn 1s ease-out forwards;
    }

    @keyframes zoomIn {
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    @media (max-width: 768px) {
      .contact-heading {
        font-size: 2.2rem;
        text-align: center;
        padding: 0 10px;
      }

      .contact-section {
        height: 30vh;
      }
    }

    @media (max-width: 480px) {
      .contact-heading {
        font-size: 1.8rem;
      }

      .contact-section {
        height: 25vh;
      }
    }

/*------------------------------------------------address section--------------------------------------*/
 .address-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.address-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.address-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.address-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  width: 360px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  text-align: left;
}

.address-box img.icon {
  height: 35px;
  vertical-align: middle;
  margin-right: 10px;
}

.address-title {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.map {
  margin-top: 15px;
}

.map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .address-container {
    flex-direction: column;
    align-items: center;
  }

  .address-box {
    width: 90%;
  }
}

/*------------------------------------------------Form section--------------------------------------*/
.content-section {
  padding: 60px 20px;
  background: #f5f5f5;
}

.content-wrapper {
  display: flex;
  justify-content: center;   /* ✅ dono center align */
  align-items: center;       /* ✅ vertical centering */
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

/* Left Info */
.content-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;  /* ✅ niche laane ke liye */
  min-height: 100%;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0px 3px 8px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 400px;
}

.contact-icon {
  font-size: 22px;
  color: #ff6600;
}

.info-content {
  display: flex;
  flex-direction: column; 
  gap: 5px;
}

.info-content p,
.info-content a {
  margin: 0;
  font-size: 15px;
  color: #333;
  text-decoration: none;
}

/* Right Form */
.contact-form {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #222;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 500px;  /* ✅ form width badhaya */
}

.contact-form input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}
.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  width: 100%;
  resize: none; /* ✅ resize option hata diya */
}

.contact-form textarea {
  min-height: 120px; /* ✅ textarea thoda bada dikhne ke liye */
}

.contact-form button {
  background: #ff6600;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #e65c00;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .info-box {
    max-width: 100%;
  }

  .contact-form {
    width: 100%;
  }
}

/*------------------------------------------------Footer section--------------------------------------*/
.footer {
  background-color: #fbeee0;
  color: #333;
  padding: 60px 5% 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1 1 280px;
  min-width: 250px;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease;
}

.footer-col.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #ff6a00;
  position: relative;
}

.footer hr {
  width: 50px;
  border: 1.5px solid #ff6a00;
  margin-bottom: 15px;
}

.footer p,
.footer li,
.footer a {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  text-decoration: none;
}

.footer li {
  list-style: none;
  margin-bottom: 6px;
}

.footer .quick-links {
  margin-left: 80px;
}

.footer-bottom {
  margin-top: 40px;
  padding: 15px;
  background-color: #e8d8c0;
  text-align: center;
  font-size: 14px;
  color: #666;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-container {
    justify-content: center;
    gap: 30px;
  }

  .footer .quick-links {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer hr {
    margin-left: auto;
    margin-right: auto;
  }
}

